d54dee624fae870d8079539823447713a1db6e65,sonar-server/src/main/java/org/sonar/server/issue/ws/IssuesWs.java,IssuesWs,defineSearchAction,#NewController#,59
Before Change
.setPossibleValues(Issue.RESOLUTIONS);
action.createParam("resolved")
.setDescription("To match resolved or unresolved issues.")
.setExampleValue("true")
.setPossibleValues("true", "false");
action.createParam("components")
.setDescription("To retrieve issues associated to a specific list of components (comma-separated list of component keys). " +
"Note that if you set the value to a project key, only issues associated to this project are retrieved. " +
After Change
.setPossibleValues(Issue.RESOLUTIONS);
action.createParam("resolved")
.setDescription("To match resolved or unresolved issues")
.setBooleanPossibleValues();
action.createParam("components")
.setDescription("To retrieve issues associated to a specific list of components (comma-separated list of component keys). " +
"Note that if you set the value to a project key, only issues associated to this project are retrieved. " +